/* Dialog Styling */

#settingsDialog {

    position: absolute;
    top: 10%;
    left: 50%;     
    transform: translateX(-50%);
    border-radius: 10px;
    
    width: 90vw; 
    max-width: 600px;

    border: none;
    padding: 0;
    background: transparent;
    background-color: peachpuff;

    padding: 2em;
    /* margin: auto; */
    border: solid 4px peru;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);

}

.dialog.hidden {
    display: none;
}

.dialog-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.dialog-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 400px;
}

.dialog-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
}


/* Guided Message Switch  */
